xm-test: Fix testcase '11_block_attach_shared_dom0' for up-to date
authorKeir Fraser <keir.fraser@citrix.com>
Thu, 20 Aug 2009 15:19:01 +0000 (16:19 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Thu, 20 Aug 2009 15:19:01 +0000 (16:19 +0100)
linux kernels

New kernels have ext2 disabled by default.  This fix uses ext3 for
testcase 11_block_attach_shared_dom0.

Signed-off-by: Andreas Florath <xen@flonatel.org>
tools/xm-test/tests/block-create/11_block_attach_shared_dom0.py

index 1b8a289394ca37298d93cc1bd26ab24cc73619bf..f93b8a1cb86616a97bba638c64bdde1922bca703 100644 (file)
@@ -10,9 +10,9 @@ if ENABLE_HVM_SUPPORT:
 
 # Mount /dev/ram0
 
-s, o = traceCommand("mkfs /dev/ram0")
+s, o = traceCommand("mkfs -j /dev/ram0")
 if s != 0:
-    FAIL("Unable to mkfs /dev/ram0")
+    FAIL("Unable to mkfs -j /dev/ram0")
 
 s, o = traceCommand("mkdir -p mnt");
 if s != 0: